home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / grafik / triton / install / install triton next >
Text File  |  1994-04-09  |  1KB  |  44 lines

  1.  
  2. ; Install script for Triton (Workbench 2.0)
  3.  
  4. (set @default-dest "")
  5.  
  6. (set tritonlib "/libs20/triton.library")
  7.  
  8. ;=============================================================================
  9. ; English strings
  10.  
  11. (set #bad-kick "You must be using Kickstart 2.04 to run Triton.")
  12.  
  13. (set #copying-triton "Copying triton.library to Libs:...")
  14.  
  15. (set #install-msg
  16. (cat "\n\nTriton installation script.\n"
  17.      "This script installs Triton library on your Amiga.\n\n"
  18.      "Read the 'Distribution' file for\n"
  19.      "more information on the distribution\n"
  20.      "and commercial usage of Triton.\n\n"
  21.      "Triton © 1993-1994 Stefan Zeiger.\n"
  22.      "All rights reserved."
  23. ))
  24.  
  25. ;=============================================================================
  26. ; make sure we are running under a 2.04 ROM
  27.  
  28. (if (< (/ (getversion) 65536) 37)
  29. (
  30.     (abort #bad-kick)
  31. ))
  32.  
  33. ;=============================================================================
  34.  
  35. (message #install-msg)
  36.  
  37. (copylib
  38.     (prompt "\n" #copying-triton)
  39.     (help @copylib-help)
  40.     (source tritonlib)
  41.     (dest "Libs:")
  42.     (confirm)
  43. )
  44.